home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 1 / Amiga Tools.iso / s / fileactions < prev    next >
Text File  |  1994-06-06  |  785b  |  23 lines

  1. ;
  2. ; FileActions Sample File
  3. ;
  4. ; Syntax:
  5. ; TYPE <typename> ACTION <action> [QUOTES]
  6. ;
  7. ; where <typename> must be a valid WhatIs Type Name
  8. ; and <action> is an AmigaDOS command string with "%s" instead of the
  9. ; file name. QUOTES is optional and switches on the quote insertion
  10. ; to allow MegaView to use filenames with spaces in it. See Documentation
  11. ; for details.
  12. ;
  13. ; Comment lines start with ; Empty lines are allowed.
  14. ; Use the comment sign (;) for End-Of-Line-Comments, too
  15.  
  16. TYPE "JPEG" ACTION "dh0:vt %s"              QUOTES
  17. TYPE "ILBM" ACTION "dh0:vt %s"              QUOTES
  18. TYPE Doc    ACTION "c:mm %s"                QUOTES
  19. TYPE ReadMe ACTION "c:mm %s"                QUOTES
  20. TYPE Guide  ACTION "Amigaguide %s"          QUOTES
  21. TYPE Text   ACTION "c:mm %s"                QUOTES
  22.  
  23.